In [1]:
2+1


Out[1]:
3

In [3]:
2-1


Out[3]:
1

In [5]:
3/2


Out[5]:
1.5

Modulo or 'Mod' operator


In [6]:
7 / 4


Out[6]:
1.75

In [7]:
7%4


Out[7]:
3

Note the remainder compared to the float.


In [8]:
50 % 5


Out[8]:
0

Returns 0 because it is evenly distributed without a remainder.


In [9]:
2 ** 3


Out[9]:
8

In [10]:
2+10*10+3


Out[10]:
105

In [11]:
(2+10)*(10+3)


Out[11]:
156

In [ ]: